是什么意思?-Whatdoesmean?" /> 是什么意思?-Whatdoesmean?" /> 是什么意思?-Whatdoesmean?" />
当前位置:  开发笔记 > 编程语言 > 正文

是什么意思?-Whatdoesmean?

Inmyhtmlpage,Iseealinkwhoseviewsourcecodeisasbelow:在我的html页面中,我看到一个链接,其“查看源代码”代码如下

In my html page, I see a link whose 'view source' code is as below :

在我的html页面中,我看到一个链接,其“查看源代码”代码如下:


I see a valid link when I hover my mouse on it and when I click it, it works. But I am not able to find where and how this URL gets generated. I found the class a.view being defined in one of the CSS, but couldn't find the URL in the page source.. Can somebody help me out on whr i can find this URL ?

当我将鼠标悬停在它上面时,我看到了一个有效的链接,当我点击它时,它就生效了。但是我不能找到这个URL是如何生成的。我找到了a班。视图被定义在一个CSS中,但是在页面源中找不到URL。谁能帮我找到这个URL ?

5 个解决方案

#1


43  

I felt like replying as well, explaining the same thing as the others a bit differently. I am sure you know most of this, but it might help someone else.

我感觉自己也在回答,解释和其他人一样的事情有点不同。我相信你知道其中的大部分,但它可能会帮助别人。


The

href="#"

part is a commonly used way to make sure the link doesn't lead anywhere on it's own. the #-attribute is used to create a link to some other section in the same document. For example clicking a link of this kind:

part是一种常用的方法,以确保链接不会在自己的任何地方产生。#-属性用于在同一文档中创建指向其他部分的链接。例如点击此类链接:

Go to news

will take you to wherever you have the

会带你去哪里?


code. So if you specify # without any name like in your case, the link leads nowhere.

代码。因此,如果您指定#没有任何名称,例如在您的例子中,链接不会导致任何结果。

The

class="view"

part gives it an identifier that CSS or Javascript can use. Inside the CSS-files (if you have any) you will find specific styling procedures on all the elements tagged with the "view"-class.

部分给出了CSS或Javascript可以使用的标识符。在css文件中(如果有的话),您将在所有标记为“view”类的元素上找到特定的样式化过程。

To find out where the URL is specified I would look in the Javascript code. It is either written directly in the same document or included from another file.

要找到URL的指定位置,我将查看Javascript代码。它可以直接写在同一个文档中,也可以从另一个文件中包含。

Search your source code for something like:

搜索您的源代码,例如:


or


and then search for any reference to your "view"-class. An included Javascript file can look something like this:

然后搜索你的“视图”类的任何引用。一个包含的Javascript文件可以是这样的:


In that case, open Javascript.js under the "include" folder and search in that file. Most commonly the includes are placed between and or close to the -tag.

在这种情况下,打开Javascript。js在“include”文件夹下,在该文件中搜索。最常见的包括在和之间或接近-tag之间。

A faster way to find the link is to search for the actual link it goes to. For example, if you are directed to http://www.google.com/search?q=html when you click it, search for "google.com" or something in all the files you have in your web project, just remember the included files.

找到链接的更快的方法是搜索它所指向的实际链接。例如,如果你被定向到http://www.google.com/search?当你点击它,搜索“google。com”或者你在你的网络项目中所有的文件,只要记住包含的文件。

In many text editors you can open all the files at once, and then search in them all for something.

在许多文本编辑器中,您可以同时打开所有的文件,然后在它们中搜索所有的内容。

#2


11  

The href is probably generated in a Javascript function. For example with jQuery:

href可能是在Javascript函数中生成的。与jQuery为例:

$(function() {
    $('a.view').attr('href', 'http://www.google.com');
});

#3


3  

Javascript may be hooking up to the click-event of the anchor, rather than injecting any href.

Javascript可能会连接到锚的点击事件,而不是注入任何href。

For example, jQuery:

例如,jQuery:

$('a.view').click(function() { Alert('anchor without a href was clicked');});

Of course, the Javascript can do anything it wants with the click event--such as navigate to some other page (in which case the href is never set, but the anchor still behaves as though it were)

当然,Javascript可以在单击事件中做任何事情——比如导航到其他页面(在这种情况下,href永远不会设置,但是锚仍然表现得像它一样)

#4


2  

Don't forget to look at the Javascript as well. My guess is that there is custom Javascript code getting executed when you click on the link and it's that Javascript that is generating the URL and navigating to it.

不要忘记查看Javascript。我的猜测是,当您点击链接时,会有自定义Javascript代码执行,而Javascript正在生成URL并导航到它。

#5


1  

It probably works with Javascript. When you click the link, nothing happens because it points to the current site. The Javascript will then load a window or an url. It's used a lot in AJAX web apps.

它可能与Javascript有关。当你点击链接时,什么都不会发生,因为它指向当前站点。然后,Javascript将加载一个窗口或一个url。它在AJAX web应用程序中经常使用。


推荐阅读
  • 本文将介绍如何在混合开发(Hybrid)应用中实现Native与HTML5的交互,包括基本概念、学习目标以及具体的实现步骤。 ... [详细]
  • 一个建表一个执行crud操作建表代码importandroid.content.Context;importandroid.database.sqlite.SQLiteDat ... [详细]
  • 如果应用程序经常播放密集、急促而又短暂的音效(如游戏音效)那么使用MediaPlayer显得有些不太适合了。因为MediaPlayer存在如下缺点:1)延时时间较长,且资源占用率高 ... [详细]
  • 解决Bootstrap DataTable Ajax请求重复问题
    在最近的一个项目中,我们使用了JQuery DataTable进行数据展示,虽然使用起来非常方便,但在测试过程中发现了一个问题:当查询条件改变时,有时查询结果的数据不正确。通过FireBug调试发现,点击搜索按钮时,会发送两次Ajax请求,一次是原条件的请求,一次是新条件的请求。 ... [详细]
  • 如何高效启动大数据应用之旅?
    在前一篇文章中,我探讨了大数据的定义及其与数据挖掘的区别。本文将重点介绍如何高效启动大数据应用项目,涵盖关键步骤和最佳实践,帮助读者快速踏上大数据之旅。 ... [详细]
  • 2020年9月15日,Oracle正式发布了最新的JDK 15版本。本次更新带来了许多新特性,包括隐藏类、EdDSA签名算法、模式匹配、记录类、封闭类和文本块等。 ... [详细]
  • 为什么多数程序员难以成为架构师?
    探讨80%的程序员为何难以晋升为架构师,涉及技术深度、经验积累和综合能力等方面。本文将详细解析Tomcat的配置和服务组件,帮助读者理解其内部机制。 ... [详细]
  • 本文详细介绍了如何在 Linux 系统上安装 JDK 1.8、MySQL 和 Redis,并提供了相应的环境配置和验证步骤。 ... [详细]
  • 网络爬虫的规范与限制
    本文探讨了网络爬虫引发的问题及其解决方案,重点介绍了Robots协议的作用和使用方法,旨在为网络爬虫的合理使用提供指导。 ... [详细]
  • 单片微机原理P3:80C51外部拓展系统
      外部拓展其实是个相对来说很好玩的章节,可以真正开始用单片机写程序了,比较重要的是外部存储器拓展,81C55拓展,矩阵键盘,动态显示,DAC和ADC。0.IO接口电路概念与存 ... [详细]
  • 两个条件,组合控制#if($query_string~*modviewthread&t(&extra(.*)))?$)#{#set$itid$1;#rewrite^ ... [详细]
  • 《Intel IA-32 架构软件开发人员手册详尽指南》提供了详尽的 IA-32 架构技术文档,涵盖指令集、系统编程和硬件接口等内容,为软件开发人员提供全面的技术支持和参考。该手册不仅包括详细的架构说明,还提供了丰富的编程示例和最佳实践,帮助开发人员更好地理解和应用 IA-32 架构。 ... [详细]
  • 本文深入探讨了CGLIB BeanCopier在Bean对象复制中的应用及其优化技巧。相较于Spring的BeanUtils和Apache的BeanUtils,CGLIB BeanCopier在性能上具有显著优势。通过详细分析其内部机制和使用场景,本文提供了多种优化方法,帮助开发者在实际项目中更高效地利用这一工具。此外,文章还讨论了CGLIB BeanCopier在复杂对象结构和大规模数据处理中的表现,为读者提供了实用的参考和建议。 ... [详细]
  • Eclipse JFace Text框架中IDocument接口的getNumberOfLines方法详解与编程实例 ... [详细]
  • 织梦系统多条件联动筛选功能详细教程及删除操作指南
    多条件联动筛选功能广泛应用于图片展示、装修设计、机械设备和在线商城等场景,通常筛选条件应聚焦于用户最关心的要素,而非涵盖所有可能的选项。在DedeCMS中,多条件筛选的PHP开发并未内置删除已选条件的功能,但通过理解PHP筛选与JS筛选的不同机制,实现这一功能相对简单且易于操作。 ... [详细]
author-avatar
小白吃丸子
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有